@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;1,200;1,500;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #111;
}
.slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #000;
}
.slider .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: 0.5s;
  z-index: 1;
  clip-path: circle(0px at center);
}
.slider input[type="radio"]:checked + .imgBx {
  z-index: 10;
  clip-path: circle(1000px at center);
  transition-delay: 0.5s;
}
.slider .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .imgBx .content {
  position: relative;
  text-align: center;
  max-width: 800px;
}
.slider .imgBx .content h3 {
  font-size: 6em;
  line-height: 1em;
  color: white;
}
.slider .imgBx .content p {
  font-size: 1.1em;
  color: #ffff;
}
.slider .imgBx .content a {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 10px 30px;
  color: #111;
  font-weight: 500;
  margin-top: 20px;
  text-decoration: none;
}
.slider .imgBx .content a:hover {
  background: #111;
  color: #fff;
  letter-spacing: 4px;
}
.slider input[type="radio"] {
  position: relative;
  z-index: 1000;
  margin: 5px;
  margin-bottom: 40px;
  outline: none;
  cursor: pointer;
}
