.styled-box-holder{
	margin:0 auto;
	color:#ffffff;
}


.row.styled-box-holder > div {
    margin: 30px auto;
}

.styled-box-holder p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.styled-box-1 {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #F6E7D8;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.styled-box-1::before {
  content: "";
  position: absolute;
  inset: -10px 100px;
  background: linear-gradient(#ffa041, #ff5600);
  transition: 0.5s;
  -webkit-animation: animate 4s linear infinite;
          animation: animate 4s linear infinite;
}
.styled-box-1::after {
  content: "";
  position: absolute;
  background-color: #e04700;
  inset: 10px;
  border-radius: 50%;
  z-index: 1;
}
.styled-box-1 .content {
  position: absolute;
  inset: 30px;
  border: 6px solid #F6E7D8;
  z-index: 3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}
.styled-box-1 .content img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
.styled-box-1 .content h2 {
  position: relative;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0;
}
.styled-box-1 .content h2 span {
  display: block;
  font-weight: 300;
  font-size: 13px;
  padding: 5px 0;
}
.styled-box-1 .content a {
  position: relative;
  background-color: #fff;
  color: #C65D7B;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: .7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.5s;
}
.styled-box-1 .content a:hover {
  letter-spacing: 3px;
}
.styled-box-1:hover::before {
  inset: -20px 0px;
}
.styled-box-1:hover img {
  opacity: 0;
}

@-webkit-keyframes animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}






