
.animated-progress {
  width: 60%;
  height: 10px;
  margin: auto;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid rgb(189, 113, 113);
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .animated-progress {
    width: 40%;
  }
}

.animated-progress span {
  height: 100%;
  display: block;
  width: 0;
  color: rgb(255, 251, 251);
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
}

.progress-bar span {
  background-color: #ca805b;
}


.card-bg-1 {
 width: 100%;
 height: 100vh;
}
.card-bg-1 .items-group {
 width: 100%;
 height: 100%;
 position: relative;
}
.card-bg-1 .items-group .item {
 top: 0px;
 left: 0px;
 opacity: 0;
 width: 100%;
 height: 100%;
 display: flex;
 overflow: hidden;
 transition: 0.5s;
 visibility: hidden;
 position: relative;
 padding: 50px 20px;
 position: absolute;
 align-items: center;
 justify-content: center;
 box-sizing: border-box;
}
.card-bg-1 .items-group .item:hover .bg {
 opacity: 0.2;
}
.card-bg-1 .items-group .item:hover .block {
 box-shadow: 0px 0px 50px #333;
}
.card-bg-1 .items-group .item.active {
 opacity: 1;
 visibility: visible;
}
.card-bg-1 .items-group .item .bg {
 top: 0px;
 left: 0px;
 opacity: 1;
 z-index: -1;
 width: 100%;
 height: 100%;
 transition: 0.5s;
 position: absolute;
 transform: scale(1.03);
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
}
.card-bg-1 .items-group .item .blur {
 top: 0px;
 left: 0px;
 z-index: -1;
 width: 100%;
 height: 100%;
 transition: 0.5s;
 filter: blur(5px);
 position: absolute;
 transform: scale(1.03);
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
}
.card-bg-1 .items-group .item .block {
 width: 100%;
 height: 100%;
 padding: 20px;
 color: #fff;
 transition: box-shadow 0.5s;
 max-width: 300px;
 overflow: hidden;
 max-height: 450px;
 border-radius: 10px;
 transform: scale(1.03);
 box-sizing: border-box;
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
 box-shadow: none;
}
.card-bg-1 .items-group .item .block .circleLight {
 top: 0px;
 left: 0px;
 opacity: 0;
 content: '';
 width: 100%;
 height: 100%;
 display: block;
 transition: 0.5s;
 position: absolute;
 border-radius: 10px;
 background: radial-gradient(circle at 80px 40px, #fff, transparent);
}
.card-bg-1 .items-group .item .block .text {
 width: 100%;
 height: 100%;
 display: flex;
 text-align: center;
 flex-direction: column;
 justify-content: center;
 background-position: center;
 background-attachment: fixed;
 align-items: center;
}
.card-bg-1 .items-group .item .block h2 {
 font-size: 130px;
 margin-bottom: 0px;
}
.card-bg-1 .items-group .item .block p {
 font-size: 15px;
}
.card-bg-1 .items-group .item .block:hover {
 box-shadow: 0px 0px 70px #111;
}
.card-bg-1 .items-group .item .block:hover .circleLight {
 opacity: 0.4;
}
.card-bg-1 .navigations {
 bottom: 0px;
 width: 100%;
 position: absolute;
}
.card-bg-1 .navigations .dots {
 height: 20px;
 padding: 10px 0px;
 text-align: center;
}
.card-bg-1 .navigations .dots li {
 width: 10px;
 height: 10px;
 cursor: pointer;
 transition: 0.3s;
 background: #fff;
 border-radius: 50%;
 display: inline-block;
 vertical-align: middle;
}
.card-bg-1 .navigations .dots li + li {
 margin-left: 10px;
}
.card-bg-1 .navigations .dots li:hover {
 filter: blur(2px);
}
.card-bg-1 .navigations .dots li.active {
 width: 15px;
 height: 15px;
}
.card-bg-1 .navigations .dots li.active:hover {
 filter: blur(0px);
}