* {
  box-sizing: border-box;
}

.slider {
  /* height: 100%; */
}
.slider .container {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  position: relative;
  text-align: left;
  /* max-width: 1200px; */
}
.slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  border: 0;
  position: relative;
}
.slider .head {
  font-size: 16px;
  position: absolute;
  z-index: 12;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0.5em;
  padding: 1em 2em 1em 2em;
  opacity: 1;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
}
.slider .head h2 {
  color: black;
  /* text-transform: uppercase; */
  padding: 0;
  margin: 0 0 0.25em;
  line-height: 1.2;
  font-size: 1.5em;
}
.slider .head h3 {
  color: rgba(180, 180, 180);
  /* text-transform: uppercase; */
  padding: 0;
  margin: 0.25em 0 0 1em;
  line-height: 1.2;
  font-size: 2em;
}
.slider .head p {
  color: rgba(0, 0, 0, 0.8);
  padding: 0;
  margin: 0 0 0.125em;
  line-height: 1.2;
  font-size: 1em;
}
.slider .head a {
  color: #00ABFA;
  text-decoration: none;
  line-height: 1.2;
  font-size: 0.75em;
}
.slider .head a:hover {
  color: #006594;
  text-decoration: underline;
}
.slider-content {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: calc(100% - 20%);
}
.slider-content figure {
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  width: 20%;
  transition: all 2s ease-in-out;
}
.slider-inner {
  line-height: 0;
  display: flex;
  height: 100%;
  width: 500%;
  animation: 30s slidy infinite;
  transition: all 2s ease-in-out;
}
.slider-thumb {
  display: block;
  z-index: 1000;
  cursor: pointer;
  position: absolute;
  width: calc(100% / 5);
  height: 20%;
  bottom: 0;
}
.slider-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.slider-thumb:hover:after {
  opacity: 0;
}
.slider-thumb .head {
  background: transparent;
  font-size: 8px;
  margin: 0;
}
.slider input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slider-arrow {
  position: absolute;
  left: 0;
  z-index: 15;
  top: 0%;
  width: 100%;
  height: 3.125rem;
  top: 45%;
  transform: translateY(-50%);
}
.slider-dot {
  height: 2rem;
  bottom: 20%;
  width: 100%;
  z-index: 10;
  position: absolute;
  text-align: center;
  background: rgba(30, 88, 153, 0.7);
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-dot .dot {
  display: block;
  border-radius: 50%;
  margin: 0 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #00ABFA;
  cursor: pointer;
}
.slider-dot .dot:hover {
  background: #00ABFA;
}
.slider #input-1:checked ~ #thumb-1:after {
  opacity: 0;
}
#input-1:checked ~ .slider-dot > .dot:nth-child(1) {
  opacity: 1;
  background: #00ABFA;
}
.slider #input-2:checked ~ #thumb-2:after {
  opacity: 0;
}
#input-2:checked ~ .slider-dot > .dot:nth-child(2) {
  opacity: 1;
  background: #00ABFA;
}
.slider #input-3:checked ~ #thumb-3:after {
  opacity: 0;
}
#input-3:checked ~ .slider-dot > .dot:nth-child(3) {
  opacity: 1;
  background: #00ABFA;
}
.slider #input-4:checked ~ #thumb-4:after {
  opacity: 0;
}
#input-4:checked ~ .slider-dot > .dot:nth-child(4) {
  opacity: 1;
  background: #00ABFA;
}
.slider #input-5:checked ~ #thumb-5:after {
  opacity: 0;
}
#input-5:checked ~ .slider-dot > .dot:nth-child(5) {
  opacity: 1;
  background: #00ABFA;
}
.slider #thumb-1 {
  left: 0%;
}
#input-1:checked ~ .slider-content .slider-inner {
  margin-left: 0%;
}
.slider #thumb-2 {
  left: 20%;
}
#input-2:checked ~ .slider-content .slider-inner {
  margin-left: -100%;
}
.slider #thumb-3 {
  left: 40%;
}
#input-3:checked ~ .slider-content .slider-inner {
  margin-left: -200%;
}
.slider #thumb-4 {
  left: 60%;
}
#input-4:checked ~ .slider-content .slider-inner {
  margin-left: -300%;
}
.slider #thumb-5 {
  left: 80%;
}
#input-5:checked ~ .slider-content .slider-inner {
  margin-left: -400%;
}
#input-1:checked ~ .slider-arrow > label:nth-child(2) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: right;
  left: auto;
  right: 0;
}
#input-1:checked ~ .slider-arrow > label:nth-child(2):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: ">";
}
#input-5:checked ~ .slider-arrow > label:nth-child(4) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: left;
  left: 0;
  right: auto;
}
#input-5:checked ~ .slider-arrow > label:nth-child(4):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "<";
}
#input-2:checked ~ .slider-arrow > label:nth-child(3) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: right;
  left: auto;
  right: 0;
}
#input-2:checked ~ .slider-arrow > label:nth-child(3):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: ">";
}
#input-4:checked ~ .slider-arrow > label:nth-child(3) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: left;
  left: 0;
  right: auto;
}
#input-4:checked ~ .slider-arrow > label:nth-child(3):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "<";
}
#input-3:checked ~ .slider-arrow > label:nth-child(4) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: right;
  left: auto;
  right: 0;
}
#input-3:checked ~ .slider-arrow > label:nth-child(4):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: ">";
}
#input-3:checked ~ .slider-arrow > label:nth-child(2) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: left;
  left: 0;
  right: auto;
}
#input-3:checked ~ .slider-arrow > label:nth-child(2):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "<";
}
#input-4:checked ~ .slider-arrow > label:nth-child(5) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: right;
  left: auto;
  right: 0;
}
#input-4:checked ~ .slider-arrow > label:nth-child(5):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: ">";
}
#input-2:checked ~ .slider-arrow > label:nth-child(1) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: left;
  left: 0;
  right: auto;
}
#input-2:checked ~ .slider-arrow > label:nth-child(1):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "<";
}
#input-5:checked ~ .slider-arrow > label:nth-child(1) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: right;
  left: auto;
  right: 0;
}
#input-5:checked ~ .slider-arrow > label:nth-child(1):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: ">";
}
#input-1:checked ~ .slider-arrow > label:nth-child(5) {
  width: 3rem;
  height: 3rem;
  margin-top: 1.5rem;
  top: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: monospace;
  float: left;
  left: 0;
  right: auto;
}
#input-1:checked ~ .slider-arrow > label:nth-child(5):after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "<";
}
input:checked ~ .slider-inner, span:focus ~ .slider-inner {
  animation: none;
}
input:hover ~ .slider-inner, label:hover ~ .slider-inner, span:hover ~ .slider-inner {
  animation-play-state: paused;
}